Function OverLoading
            Overloading Refers one name with multiple form by showing the difference in the arguments list.
Write a program on function Overlaoding
using System;
class abc
{

    public void put(int x,int y)
{
Console.WriteLine("Sum" + (x + y));

    }
public void put(int x, double  y)
{
Console.WriteLine("Sub" + (x - y));

    }
public void put(double  x, int y)
{
Console.WriteLine("Mul" + (x * y));

    }
public void put(double  x, double  y)
{
Console.WriteLine("Div" + (x / y));

    }

   
}
class sample
{
public static void Main()
{
abc x = new abc();
x.put(2.5, 5.2);
x.put(45, 5);
x.put(3.4, 5);
x.put(5, 2.3);
}
}